home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineButton2_1479 / BUTTONCONDACTION on(release).as next >
Encoding:
Text File  |  2005-09-27  |  345 b   |  18 lines

  1. on(release){
  2.    if(_root.money >= 7000 && _root.rockSpell != 1)
  3.    {
  4.       _root.rockSpell = 1;
  5.       _root.bigRock._visible = true;
  6.       messo = "Got Big Rock!";
  7.       _root.money -= 7000;
  8.    }
  9.    else if(_root.rockSpell == 1)
  10.    {
  11.       messo = "Already have it!";
  12.    }
  13.    else
  14.    {
  15.       messo = "Not enough money!";
  16.    }
  17. }
  18.